home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / make.DEC_MIPS < prev    next >
Text File  |  1990-11-05  |  1KB  |  74 lines

  1.  
  2. # Installation dependent make variables for ericv on nemesis.
  3.  
  4. # full path of the ESPRIT environment
  5. ESPRITDIR = /home1/ericv
  6.  
  7. #  BDIR     : bin directory
  8. BDIR = $(ESPRITDIR)/bin
  9.  
  10. #  IDIR     : include directory
  11. IDIR = $(ESPRITDIR)/include
  12.  
  13. #  LDIR     : library directory
  14. LDIR = $(ESPRITDIR)/lib
  15.  
  16.  
  17. NFULLDS = $(ESPRITDIR)/src/ds/nfullgl.ds
  18. NKERNDS = $(ESPRITDIR)/src/ds/nkerngl.ds
  19.  
  20. #  HOSTNAME : name of installation machine.
  21. HOSTNAME=phoibos
  22.  
  23. # SYS     : name of operating system or machine type
  24. #     BSD    For generic BSD systems
  25. #     AVIION    For generic DG_UX systems
  26. #     HPUX    For all HP-UX systems
  27. #     SUN    For all SUN systems
  28. #     APOLLO    For all Apollo systems
  29.  
  30. SYS=DEC_MIPS
  31. CLIBLOC = 
  32.  
  33. LINTLIBLOC =
  34.  
  35. PASLIBLOC =
  36.  
  37. # CBADADR : address that will cause a core-dump if read or written.
  38. CBADADR = 0
  39.  
  40. SYSLINTFLAGS = -hpac
  41. SYSCFLAGS = 
  42. SYSCPROFFLAGS =
  43. SYSCDBUGFLAGS =
  44. SYSPFLAGS =
  45. OFLAG =  -G 0
  46. # Collection of host dependent make rules.
  47.  
  48. ### libinstall ###
  49. # MODULE    - module to install
  50. libinstall:
  51.     cp $(MODULE) $(LDIR)/$(MODULE)
  52.  
  53. ### includeinstall ###
  54. # MODULE    - module to install
  55. includeinstall:
  56.     cp $(MODULE) $(IDIR)/$(MODULE)
  57.  
  58. ### maninstall ###
  59. # MAN        - manual page to install
  60. maninstall:
  61.     cp $(MAN) /usr/man/manl
  62.  
  63. ### bininstall ###
  64. # MODULE    - module to install
  65. bininstall:
  66.     cp $(MODULE) $(BDIR)/$(MODULE)
  67.     strip $(BDIR)/$(MODULE)
  68.  
  69. ### arlibinstall ###
  70. # MODULE    - module to install
  71. arlibinstall:
  72.     ranlib $(MODULE)
  73.     cp $(MODULE) $(LDIR)/$(MODULE)
  74.